home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / lang / SmallEiffel.readme < prev    next >
Text File  |  1999-03-02  |  58KB  |  1,102 lines

  1. Short:    GNU SmallEiffel -0.79 compiler for Amiga systems.
  2. Author:   colnet@loria.fr (Dominique Colnet)
  3. Uploader: jatapa@iki.fi (Jari Pakarinen)
  4. Type:     dev/lang
  5.  
  6.    SmallEiffel -0.79
  7.    -----------------
  8.  
  9. This is the full SmallEiffel distribution -0.79 with Amiga executables.
  10.  
  11. There are four archives:
  12.  
  13. SmallEiffel.lha        The complete distribution, with source code.
  14. SmallEiffel_020.lha    SmallEiffel -0.79 68020 executables.
  15. SmallEiffel_040.lha    SmallEiffel -0.79 68040 executables.
  16. SmallEiffel_060.lha    SmallEiffel -0.79 68060 executables.
  17.  
  18.  
  19. You will need the SmallEiffel.lha and the executable files
  20. according to your Amigas processor. If you'd like to have
  21. executables for 68000, ask me, and i'll do them.
  22.  
  23. You'll also need a C-compiler. GCC (eg. Geek Gadgets) is fine,
  24. SAS/C works, but is quite slow with this. SmallEiffel produces
  25. C-code from Eiffel-code, which is then compiled to executable.
  26.  
  27. This version has been compiled with Geek Gadgets GCC snapshot 971125.
  28. It will need ixemul.library >= 47.2 (that's what I'm using anyway)
  29.  
  30. Executables need to be copied somewhere on your path. SmallEiffel/bin
  31. is the recommended place. Then you'll have to add SmallEiffel/bin
  32. to your path (easiest way is to add a line to your User-Startup
  33. file, eg: `path Work:SmallEiffel/bin add', when SmallEiffel is installed
  34. on hard disk called Work: and in directory called SmallEiffel)
  35.  
  36. You'll also need to add a environment variable `SmallEiffel' to the system.
  37. This can be done with a command SetEnv (this line can also be added to the
  38. User-Startup file):
  39.  
  40. setenv SmallEiffel Work:SmallEiffel/sys/system.se
  41.  
  42. Variable SmallEiffel must include the path to the system.se file.
  43. (Read the docs!)
  44.  
  45. File SmallEiffel/sys/loadpath.Amiga must contain the path where SmallEiffel
  46. libraries are. It could be like this:
  47.  
  48. ./
  49. Work:SmallEiffel-0.79/lib_std/
  50. Work:SmallEiffel-0.79/lib_rand/
  51. Work:SmallEiffel-0.79/lib_show/
  52. Work:SmallEiffel-0.79/lib_se/
  53.  
  54. system.se file contains the name of the current system: Amiga.
  55.  
  56. If you're using GCC you don't have to touch the other files
  57. (compiler.Amiga, linker.Amiga, o_suffix.Amiga)
  58.  
  59.    Makefiles
  60.    ---------
  61.  
  62. I've also included the makefiles used to produce the executables.
  63. They are on the SmallEiffel/bin_c/ subdirectory. They are:
  64.  
  65. ---
  66. all_020.make
  67. all_040.make
  68. all_060.make
  69. clean_020.make
  70. clean_040.make
  71. clean_060.make
  72. compile_020.make
  73. compile_040.make
  74. compile_060.make
  75. compile_to_c_020.make
  76. compile_to_c_040.make
  77. compile_to_c_060.make
  78. compile_to_jvm_020.make
  79. compile_to_jvm_040.make
  80. compile_to_jvm_060.make
  81. finder_020.make
  82. finder_040.make
  83. finder_060.make
  84. pretty_020.make
  85. pretty_040.make
  86. pretty_060.make
  87. print_jvm_class_020.make
  88. print_jvm_class_040.make
  89. print_jvm_class_060.make
  90. short_020.make
  91. short_040.make
  92. short_060.make
  93. ---
  94.  
  95. all_0x0.make compiles all the executables in one go by calling
  96. every makefile for the used processor. Eg. all_060.make calls
  97. clean_060.make, compile_060.make etc.
  98.  
  99. These makefiles are done with `sh' (shell from Unix world) in mind.
  100. They won't work correctly on AmigaShell due to the limit of
  101. AmigaShell's command line length (eg. compile_to_c.make does not
  102. work). You can ofcourse bypass this limitation by renaming the *.c
  103. files to something shorter (c01.c, c02.c, etc.) and editing the
  104. makefiles accordingly. I've done this and can tell you it's a lot
  105. easier to get the sh than to rename each file by hand ! sh comes
  106. with GG GCC. In sh these makefiles work correctly.
  107.  
  108. The files take a while to compile, on my 060 it took about
  109. 1 1/2 hours to compile them all (for one CPU). GCC also needs
  110. some memory to operate, I'd say 8MB is just enough, but the
  111. more the better.
  112.  
  113.    Useage
  114.    ------
  115.  
  116. Write some Eiffel-code and issue the command compile in Shell:
  117.  
  118. compile myeiffelcode.e -no_gc -verbose
  119.  
  120. This will compile the source code (myeiffelcode.e) to C and
  121. show you what it is doing (-verbose) and the -no_gc will switch
  122. garbage collector off (it doesn't work on Amigas stack, at least
  123. currently). Lastly it will compile the produced C code to executable
  124. named a.out in current directory. Then you can try it with command
  125. a.out.
  126.  
  127. There are docs for every command in SmallEiffel/man directory.
  128.  
  129.    Contact
  130.    -------
  131.  
  132. Read the docs that come with the compiler (SmallEiffel/man directory).
  133.  
  134. If you have something to ask or comments about this port, then
  135. contact Jari Pakarinen (jatapa@iki.fi). I have nothing to do
  136. with the actual programming of SmallEiffel, I just made this
  137. port (actually just compiled the executables and set couple
  138. of settings).
  139.  
  140. If you have questions about SmallEiffel in general, contact
  141. Dominique Colnet (colnet@loria.fr) or preferably SmallEiffel
  142. mailing list at smalleiffel@loria.fr.
  143.  
  144. SmallEiffel homepages are at http://www.loria.fr/SmallEiffel
  145.  
  146. Happy Eiffeling !
  147.  
  148. Jari Pakarinen (jatapa@iki.fi)
  149.  
  150.  
  151. ============================= Archive contents =============================
  152.  
  153. Original  Packed Ratio    Date     Time    Name
  154. -------- ------- ----- --------- --------  -------------
  155.      224     108 51.7% 01-Jan-99 15:21:00 +all_020.make
  156.      224     108 51.7% 01-Jan-99 15:21:08 +all_040.make
  157.      224     107 52.2% 01-Jan-99 15:21:14 +all_060.make
  158.    35211    8334 76.3% 22-Dec-98 09:05:52 +clean.c
  159.     9585    3157 67.0% 22-Dec-98 09:05:52 +clean.h
  160.       36      36  0.0% 02-Jan-99 14:14:54 +clean.make
  161.       86      67 22.0% 01-Jan-99 13:17:48 +clean_020.make
  162.       86      67 22.0% 01-Jan-99 13:29:44 +clean_040.make
  163.       86      68 20.9% 01-Jan-99 13:24:24 +clean_060.make
  164.    37813    8903 76.4% 22-Dec-98 09:05:50 +compile.c
  165.    10209    3298 67.6% 22-Dec-98 09:05:50 +compile.h
  166.       42      38  9.5% 02-Jan-99 14:14:54 +compile.make
  167.       97      67 30.9% 01-Jan-99 13:18:14 +compile_020.make
  168.       97      67 30.9% 01-Jan-99 13:29:56 +compile_040.make
  169.       97      67 30.9% 01-Jan-99 13:25:00 +compile_060.make
  170.   248852   51412 79.3% 22-Dec-98 09:05:52 +compile_to_c.h
  171.     2543     319 87.4% 02-Jan-99 14:14:54 +compile_to_c.make
  172.    15845    4675 70.4% 22-Dec-98 09:05:52 +compile_to_c1.c
  173.    22855    2641 88.4% 22-Dec-98 09:05:52 +compile_to_c10.c
  174.    45731    4609 89.9% 22-Dec-98 09:05:52 +compile_to_c11.c
  175.   110274   17245 84.3% 22-Dec-98 09:05:54 +compile_to_c12.c
  176.    51249    9970 80.5% 22-Dec-98 09:05:54 +compile_to_c13.c
  177.   131247   22892 82.5% 22-Dec-98 09:05:54 +compile_to_c14.c
  178.    30084    5666 81.1% 22-Dec-98 09:05:54 +compile_to_c15.c
  179.    47640    9016 81.0% 22-Dec-98 09:05:54 +compile_to_c16.c
  180.    22819    5296 76.7% 22-Dec-98 09:05:54 +compile_to_c17.c
  181.    41578    8444 79.6% 22-Dec-98 09:05:54 +compile_to_c18.c
  182.    12514    2957 76.3% 22-Dec-98 09:05:54 +compile_to_c19.c
  183.     5062    1032 79.6% 22-Dec-98 09:05:52 +compile_to_c2.c
  184.    57797   10616 81.6% 22-Dec-98 09:05:54 +compile_to_c20.c
  185.    37894    6723 82.2% 22-Dec-98 09:05:54 +compile_to_c21.c
  186.    83561   14594 82.5% 22-Dec-98 09:05:54 +compile_to_c22.c
  187.    33112    6100 81.5% 22-Dec-98 09:05:54 +compile_to_c23.c
  188.    62111   10336 83.3% 22-Dec-98 09:05:54 +compile_to_c24.c
  189.    91923   16174 82.4% 22-Dec-98 09:05:54 +compile_to_c25.c
  190.    19332    4288 77.8% 22-Dec-98 09:05:56 +compile_to_c26.c
  191.    61712   10785 82.5% 22-Dec-98 09:05:56 +compile_to_c27.c
  192.     6221    2001 67.8% 22-Dec-98 09:05:56 +compile_to_c28.c
  193.    62543   11072 82.2% 22-Dec-98 09:05:56 +compile_to_c29.c
  194.     5134     927 81.9% 22-Dec-98 09:05:52 +compile_to_c3.c
  195.    59669   10543 82.3% 22-Dec-98 09:05:56 +compile_to_c30.c
  196.    67652   11652 82.7% 22-Dec-98 09:05:56 +compile_to_c31.c
  197.    13809    3566 74.1% 22-Dec-98 09:05:56 +compile_to_c32.c
  198.    59714    9331 84.3% 22-Dec-98 09:05:56 +compile_to_c33.c
  199.    11152    2608 76.6% 22-Dec-98 09:05:56 +compile_to_c34.c
  200.    75161   13359 82.2% 22-Dec-98 09:05:56 +compile_to_c35.c
  201.    47407    8724 81.5% 22-Dec-98 09:05:56 +compile_to_c36.c
  202.    56420   10502 81.3% 22-Dec-98 09:05:56 +compile_to_c37.c
  203.     2603     890 65.8% 22-Dec-98 09:05:56 +compile_to_c38.c
  204.    37496    7503 79.9% 22-Dec-98 09:05:56 +compile_to_c39.c
  205.     4130     947 77.0% 22-Dec-98 09:05:52 +compile_to_c4.c
  206.    85543   11062 87.0% 22-Dec-98 09:05:56 +compile_to_c40.c
  207.    68666   12634 81.6% 22-Dec-98 09:05:56 +compile_to_c41.c
  208.    22429    3951 82.3% 22-Dec-98 09:05:58 +compile_to_c42.c
  209.    64825   10560 83.7% 22-Dec-98 09:05:58 +compile_to_c43.c
  210.    31257    5686 81.8% 22-Dec-98 09:05:58 +compile_to_c44.c
  211.    70684   11363 83.9% 22-Dec-98 09:05:58 +compile_to_c45.c
  212.    64520   11461 82.2% 22-Dec-98 09:05:58 +compile_to_c46.c
  213.     5754    1441 74.9% 22-Dec-98 09:05:58 +compile_to_c47.c
  214.    49353    9111 81.5% 22-Dec-98 09:05:58 +compile_to_c48.c
  215.     2765     961 65.2% 22-Dec-98 09:05:58 +compile_to_c49.c
  216.     3505     696 80.1% 22-Dec-98 09:05:52 +compile_to_c5.c
  217.    72679   12971 82.1% 22-Dec-98 09:05:58 +compile_to_c50.c
  218.    60230   15119 74.8% 22-Dec-98 09:05:58 +compile_to_c51.c
  219.    67168   21297 68.2% 22-Dec-98 09:05:58 +compile_to_c52.c
  220.    24173    3418 85.8% 22-Dec-98 09:05:58 +compile_to_c53.c
  221.    90837   10307 88.6% 22-Dec-98 09:05:58 +compile_to_c54.c
  222.    49766    6029 87.8% 22-Dec-98 09:05:58 +compile_to_c55.c
  223.    78045    7960 89.8% 22-Dec-98 09:05:58 +compile_to_c56.c
  224.     3602     734 79.6% 22-Dec-98 09:06:00 +compile_to_c57.c
  225.    22755    3864 83.0% 22-Dec-98 09:05:52 +compile_to_c6.c
  226.    18817    2864 84.7% 22-Dec-98 09:05:52 +compile_to_c7.c
  227.    25614    2833 88.9% 22-Dec-98 09:05:52 +compile_to_c8.c
  228.    18121    2473 86.3% 22-Dec-98 09:05:52 +compile_to_c9.c
  229.     3172     351 88.9% 01-Jan-99 13:19:22 +compile_to_c_020.make
  230.     3172     352 88.9% 01-Jan-99 13:30:12 +compile_to_c_040.make
  231.     3172     352 88.9% 01-Jan-99 13:25:26 +compile_to_c_060.make
  232.   219721   45660 79.2% 22-Dec-98 09:06:00 +compile_to_jvm.h
  233.     2435     290 88.0% 02-Jan-99 14:14:54 +compile_to_jvm.make
  234.    15901    4483 71.8% 22-Dec-98 09:06:00 +compile_to_jvm1.c
  235.    28496    3271 88.5% 22-Dec-98 09:06:00 +compile_to_jvm10.c
  236.    60320    5919 90.1% 22-Dec-98 09:06:00 +compile_to_jvm11.c
  237.   128049   22360 82.5% 22-Dec-98 09:06:02 +compile_to_jvm12.c
  238.    55920   11545 79.3% 22-Dec-98 09:06:02 +compile_to_jvm13.c
  239.    49356    9604 80.5% 22-Dec-98 09:06:02 +compile_to_jvm14.c
  240.    12142    3113 74.3% 22-Dec-98 09:06:02 +compile_to_jvm15.c
  241.    42971    9137 78.7% 22-Dec-98 09:06:04 +compile_to_jvm16.c
  242.     8306    2270 72.6% 22-Dec-98 09:06:04 +compile_to_jvm17.c
  243.    41867    8810 78.9% 22-Dec-98 09:06:04 +compile_to_jvm18.c
  244.    15984    3517 77.9% 22-Dec-98 09:06:04 +compile_to_jvm19.c
  245.     4936    1036 79.0% 22-Dec-98 09:06:00 +compile_to_jvm2.c
  246.    52239   11021 78.9% 22-Dec-98 09:06:04 +compile_to_jvm20.c
  247.     7582    2131 71.8% 22-Dec-98 09:06:04 +compile_to_jvm21.c
  248.    39806    8354 79.0% 22-Dec-98 09:06:04 +compile_to_jvm22.c
  249.    67218   12858 80.8% 22-Dec-98 09:06:04 +compile_to_jvm23.c
  250.     3953    1528 61.3% 22-Dec-98 09:06:04 +compile_to_jvm24.c
  251.    42144    8025 80.9% 22-Dec-98 09:06:04 +compile_to_jvm25.c
  252.    28047    5671 79.7% 22-Dec-98 09:06:04 +compile_to_jvm26.c
  253.    53631   10928 79.6% 22-Dec-98 09:06:04 +compile_to_jvm27.c
  254.    55080   10571 80.8% 22-Dec-98 09:06:04 +compile_to_jvm28.c
  255.    46564    8533 81.6% 22-Dec-98 09:06:04 +compile_to_jvm29.c
  256.     4892     917 81.2% 22-Dec-98 09:06:00 +compile_to_jvm3.c
  257.    44419    9533 78.5% 22-Dec-98 09:06:04 +compile_to_jvm30.c
  258.    29137    5861 79.8% 22-Dec-98 09:06:06 +compile_to_jvm31.c
  259.    26470    5901 77.7% 22-Dec-98 09:06:06 +compile_to_jvm32.c
  260.    38060    8080 78.7% 22-Dec-98 09:06:06 +compile_to_jvm33.c
  261.    39857    8544 78.5% 22-Dec-98 09:06:06 +compile_to_jvm34.c
  262.    35758    6982 80.4% 22-Dec-98 09:06:06 +compile_to_jvm35.c
  263.    96272   16217 83.1% 22-Dec-98 09:06:06 +compile_to_jvm36.c
  264.    17893    4570 74.4% 22-Dec-98 09:06:06 +compile_to_jvm37.c
  265.    46707    9161 80.3% 22-Dec-98 09:06:06 +compile_to_jvm38.c
  266.    51215   10010 80.4% 22-Dec-98 09:06:06 +compile_to_jvm39.c
  267.     3261     818 74.9% 22-Dec-98 09:06:00 +compile_to_jvm4.c
  268.    27895    5938 78.7% 22-Dec-98 09:06:06 +compile_to_jvm40.c
  269.    47797    9626 79.8% 22-Dec-98 09:06:06 +compile_to_jvm41.c
  270.    12973    2866 77.9% 22-Dec-98 09:06:06 +compile_to_jvm42.c
  271.    52988   11317 78.6% 22-Dec-98 09:06:06 +compile_to_jvm43.c
  272.     4461    1526 65.7% 22-Dec-98 09:06:06 +compile_to_jvm44.c
  273.    82389   23122 71.9% 22-Dec-98 09:06:06 +compile_to_jvm45.c
  274.     8089     725 91.0% 22-Dec-98 09:06:08 +compile_to_jvm46.c
  275.    82646    8935 89.1% 22-Dec-98 09:06:08 +compile_to_jvm47.c
  276.    53178    6458 87.8% 22-Dec-98 09:06:08 +compile_to_jvm48.c
  277.    86346    7783 90.9% 22-Dec-98 09:06:08 +compile_to_jvm49.c
  278.    12384    2447 80.2% 22-Dec-98 09:06:00 +compile_to_jvm5.c
  279.    14891    2118 85.7% 22-Dec-98 09:06:08 +compile_to_jvm50.c
  280.    19460    2856 85.3% 22-Dec-98 09:06:00 +compile_to_jvm6.c
  281.    19509    2436 87.5% 22-Dec-98 09:06:00 +compile_to_jvm7.c
  282.    18039    2798 84.4% 22-Dec-98 09:06:00 +compile_to_jvm8.c
  283.    20712    2871 86.1% 22-Dec-98 09:06:00 +compile_to_jvm9.c
  284.     3002     323 89.2% 01-Jan-99 13:14:50 +compile_to_jvm_020.make
  285.     3002     325 89.1% 01-Jan-99 13:30:34 +compile_to_jvm_040.make
  286.     3002     323 89.2% 01-Jan-99 13:25:46 +compile_to_jvm_060.make
  287.    47410    9864 79.1% 22-Dec-98 09:05:50 +finder.c
  288.    10564    3402 67.7% 22-Dec-98 09:05:50 +finder.h
  289.       39      38  2.5% 02-Jan-99 14:14:54 +finder.make
  290.       92      68 26.0% 01-Jan-99 13:15:32 +finder_020.make
  291.       92      68 26.0% 01-Jan-99 13:30:46 +finder_040.make
  292.       92      68 26.0% 01-Jan-99 13:26:04 +finder_060.make
  293.   169943   35485 79.1% 22-Dec-98 09:06:12 +pretty.h
  294.     1299     227 82.5% 02-Jan-99 14:14:54 +pretty.make
  295.    15130    4288 71.6% 22-Dec-98 09:06:12 +pretty1.c
  296.    46819    5653 87.9% 22-Dec-98 09:06:14 +pretty10.c
  297.   118933   21446 81.9% 22-Dec-98 09:06:14 +pretty11.c
  298.    25596    5082 80.1% 22-Dec-98 09:06:14 +pretty12.c
  299.    44710    8489 81.0% 22-Dec-98 09:06:16 +pretty13.c
  300.     7137    1918 73.1% 22-Dec-98 09:06:16 +pretty14.c
  301.    36427    7834 78.4% 22-Dec-98 09:06:16 +pretty15.c
  302.    46579    9415 79.7% 22-Dec-98 09:06:16 +pretty16.c
  303.     5753    1595 72.2% 22-Dec-98 09:06:16 +pretty17.c
  304.    22992    5429 76.3% 22-Dec-98 09:06:16 +pretty18.c
  305.    54921    9946 81.8% 22-Dec-98 09:06:16 +pretty19.c
  306.     4827    1015 78.9% 22-Dec-98 09:06:12 +pretty2.c
  307.    57366   10500 81.6% 22-Dec-98 09:06:16 +pretty20.c
  308.    36946    7779 78.9% 22-Dec-98 09:06:16 +pretty21.c
  309.    59763   11099 81.4% 22-Dec-98 09:06:16 +pretty22.c
  310.    37510    6724 82.0% 22-Dec-98 09:06:16 +pretty23.c
  311.    30746    6773 77.9% 22-Dec-98 09:06:16 +pretty24.c
  312.    35151    6506 81.4% 22-Dec-98 09:06:16 +pretty25.c
  313.    31947    6988 78.1% 22-Dec-98 09:06:16 +pretty26.c
  314.    35438    7400 79.1% 22-Dec-98 09:06:16 +pretty27.c
  315.     1376     602 56.2% 22-Dec-98 09:06:16 +pretty28.c
  316.    42943    8153 81.0% 22-Dec-98 09:06:18 +pretty29.c
  317.     4480     954 78.7% 22-Dec-98 09:06:12 +pretty3.c
  318.    53880   10311 80.8% 22-Dec-98 09:06:18 +pretty30.c
  319.    53066    8504 83.9% 22-Dec-98 09:06:18 +pretty31.c
  320.     9864    2472 74.9% 22-Dec-98 09:06:18 +pretty32.c
  321.    46219    9373 79.7% 22-Dec-98 09:06:18 +pretty33.c
  322.     2843    1004 64.6% 22-Dec-98 09:06:18 +pretty34.c
  323.    44014    9562 78.2% 22-Dec-98 09:06:18 +pretty35.c
  324.    69643   19443 72.0% 22-Dec-98 09:06:18 +pretty36.c
  325.     2791     510 81.7% 22-Dec-98 09:06:18 +pretty37.c
  326.    59494    7574 87.2% 22-Dec-98 09:06:18 +pretty38.c
  327.    64728    6458 90.0% 22-Dec-98 09:06:18 +pretty39.c
  328.     3028     655 78.3% 22-Dec-98 09:06:12 +pretty4.c
  329.     6982    1294 81.4% 22-Dec-98 09:06:18 +pretty40.c
  330.    20211    3375 83.3% 22-Dec-98 09:06:12 +pretty5.c
  331.    17741    2725 84.6% 22-Dec-98 09:06:12 +pretty6.c
  332.    18406    2708 85.2% 22-Dec-98 09:06:14 +pretty7.c
  333.    16799    2598 84.5% 22-Dec-98 09:06:14 +pretty8.c
  334.    42395    4291 89.8% 22-Dec-98 09:06:14 +pretty9.c
  335.     1710     264 84.5% 01-Jan-99 13:15:56 +pretty_020.make
  336.     1710     265 84.5% 01-Jan-99 13:31:10 +pretty_040.make
  337.     1710     265 84.5% 01-Jan-99 13:26:22 +pretty_060.make
  338.   115889   20924 81.9% 22-Dec-98 09:05:52 +print_jvm_class.c
  339.    20260    5164 74.5% 22-Dec-98 09:05:52 +print_jvm_class.h
  340.       66      47 28.7% 02-Jan-99 14:14:54 +print_jvm_class.make
  341.      136      77 43.3% 01-Jan-99 13:16:50 +print_jvm_class_020.make
  342.      136      77 43.3% 01-Jan-99 13:31:24 +print_jvm_class_040.make
  343.      136      76 44.1% 01-Jan-99 13:26:42 +print_jvm_class_060.make
  344.   172705   35696 79.3% 22-Dec-98 09:06:04 +short.h
  345.     1217     221 81.8% 02-Jan-99 14:14:54 +short.make
  346.    15048    4268 71.6% 22-Dec-98 09:06:00 +short1.c
  347.    48682    5925 87.8% 22-Dec-98 09:06:08 +short10.c
  348.   121944   21481 82.3% 22-Dec-98 09:06:08 +short11.c
  349.    19448    4281 77.9% 22-Dec-98 09:06:08 +short12.c
  350.    42908    8277 80.7% 22-Dec-98 09:06:08 +short13.c
  351.    15103    3611 76.0% 22-Dec-98 09:06:08 +short14.c
  352.    33475    7137 78.6% 22-Dec-98 09:06:10 +short15.c
  353.    46640    9628 79.3% 22-Dec-98 09:06:10 +short16.c
  354.     3723    1070 71.2% 22-Dec-98 09:06:10 +short17.c
  355.    26274    5953 77.3% 22-Dec-98 09:06:10 +short18.c
  356.    52730   10009 81.0% 22-Dec-98 09:06:10 +short19.c
  357.     4826    1022 78.8% 22-Dec-98 09:06:08 +short2.c
  358.    47058    9547 79.7% 22-Dec-98 09:06:10 +short20.c
  359.    35545    7617 78.5% 22-Dec-98 09:06:10 +short21.c
  360.    52130   10035 80.7% 22-Dec-98 09:06:10 +short22.c
  361.    37894    7384 80.5% 22-Dec-98 09:06:10 +short23.c
  362.    33498    5892 82.4% 22-Dec-98 09:06:10 +short24.c
  363.    39876    8288 79.2% 22-Dec-98 09:06:10 +short25.c
  364.     4869    1546 68.2% 22-Dec-98 09:06:10 +short26.c
  365.    29330    6456 77.9% 22-Dec-98 09:06:10 +short27.c
  366.    45444    8931 80.3% 22-Dec-98 09:06:10 +short28.c
  367.    46631    9186 80.3% 22-Dec-98 09:06:10 +short29.c
  368.     4471     951 78.7% 22-Dec-98 09:06:08 +short3.c
  369.    52899    8517 83.8% 22-Dec-98 09:06:12 +short30.c
  370.     4046    1136 71.9% 22-Dec-98 09:06:12 +short31.c
  371.    46227    9620 79.1% 22-Dec-98 09:06:12 +short32.c
  372.     2785    1071 61.5% 22-Dec-98 09:06:12 +short33.c
  373.    41707    9164 78.0% 22-Dec-98 09:06:12 +short34.c
  374.    19062    3905 79.5% 22-Dec-98 09:06:12 +short35.c
  375.    73011   20484 71.9% 22-Dec-98 09:06:12 +short36.c
  376.     5599     624 88.8% 22-Dec-98 09:06:12 +short37.c
  377.    61131    7309 88.0% 22-Dec-98 09:06:12 +short38.c
  378.    64820    6733 89.6% 22-Dec-98 09:06:12 +short39.c
  379.     3027     664 78.0% 22-Dec-98 09:06:08 +short4.c
  380.     1426     512 64.0% 22-Dec-98 09:06:12 +short40.c
  381.    20989    3476 83.4% 22-Dec-98 09:06:08 +short5.c
  382.    18338    2814 84.6% 22-Dec-98 09:06:08 +short6.c
  383.    17625    2642 85.0% 22-Dec-98 09:06:08 +short7.c
  384.    16619    2582 84.4% 22-Dec-98 09:06:08 +short8.c
  385.    41121    4162 89.8% 22-Dec-98 09:06:08 +short9.c
  386.     1667     263 84.2% 01-Jan-99 13:17:18 +short_020.make
  387.     1667     264 84.1% 01-Jan-99 13:31:44 +short_040.make
  388.     1667     264 84.1% 01-Jan-99 13:27:04 +short_060.make
  389.     9079    2908 67.9% 22-Dec-98 09:06:50 +add-line-directive
  390.    34017    9995 70.6% 22-Dec-98 09:06:50 +edb.el
  391.    17945    5064 71.7% 22-Dec-98 09:06:50 +edb19.el
  392.      216     114 47.2% 22-Dec-98 09:06:50 +gc-inc
  393.      618     297 51.9% 22-Dec-98 09:06:50 +move-if-changed
  394.     1710     870 49.1% 22-Dec-98 09:06:50 +READ_ME
  395.     3174    1166 63.2% 22-Dec-98 09:06:50 +sec
  396.     7278    2268 68.8% 22-Dec-98 09:06:50 +case_insensitive_string.e
  397.      569     355 37.6% 22-Dec-98 09:06:50 +header.txt
  398.     3434    1321 61.5% 22-Dec-98 09:06:50 +string_formatter.e
  399.      926     405 56.2% 22-Dec-98 09:06:50 +READ_ME
  400.    17976    6986 61.1% 22-Dec-98 09:07:58 +COPYING
  401.    17977    6985 61.1% 22-Dec-98 09:06:18 +GNU_LICENSE
  402.     1411     734 47.9% 22-Dec-98 09:06:18 +demo1.e
  403.     1145     660 42.3% 22-Dec-98 09:06:18 +demo2.e
  404.     1772     870 50.9% 22-Dec-98 09:06:18 +demo3.e
  405.     2048     965 52.8% 22-Dec-98 09:06:18 +gen_rand.e
  406.     1799     901 49.9% 22-Dec-98 09:06:18 +min_stand.e
  407.      794     500 37.0% 22-Dec-98 09:06:18 +READ_ME
  408.     1929     926 51.9% 22-Dec-98 09:06:18 +std_rand.e
  409.     5235    1713 67.2% 22-Dec-98 09:06:30 +abstract_current.e
  410.     5819    1694 70.8% 22-Dec-98 09:06:32 +abstract_result.e
  411.     4307    1594 62.9% 22-Dec-98 09:06:18 +address_of.e
  412.     1996     987 50.5% 22-Dec-98 09:06:32 +address_of_pool.e
  413.     4072    1341 67.0% 22-Dec-98 09:06:18 +argument_name.e
  414.     1949     987 49.3% 22-Dec-98 09:06:18 +argument_name1.e
  415.     2233    1040 53.4% 22-Dec-98 09:06:18 +argument_name2.e
  416.     5853    1887 67.7% 22-Dec-98 09:06:18 +assertion.e
  417.     7602    2435 67.9% 22-Dec-98 09:06:20 +assertion_list.e
  418.     7129    2135 70.0% 22-Dec-98 09:06:20 +assignment.e
  419.     2191    1089 50.2% 22-Dec-98 09:06:20 +attribute.e
  420.    25216    6590 73.8% 22-Dec-98 09:06:20 +base_class.e
  421.     3559    1323 62.8% 22-Dec-98 09:06:20 +base_type_constant.e
  422.     2253    1035 54.0% 22-Dec-98 09:06:30 +binary_file_read.e
  423.     2302    1019 55.7% 22-Dec-98 09:06:30 +binary_file_write.e
  424.     5544    1976 64.3% 22-Dec-98 09:06:20 +bit_constant.e
  425.     1516     803 47.0% 22-Dec-98 09:06:20 +boolean_constant.e
  426.    60077   14096 76.5% 22-Dec-98 09:06:22 +c_pretty_printer.e
  427.     4813    1446 69.9% 22-Dec-98 09:06:20 +call.e
  428.     2343    1069 54.3% 22-Dec-98 09:06:20 +call_0.e
  429.     5461    1635 70.0% 22-Dec-98 09:06:20 +call_0_c.e
  430.     1578     841 46.7% 22-Dec-98 09:06:20 +call_1.e
  431.     4517    1539 65.9% 22-Dec-98 09:06:20 +call_1_c.e
  432.     3938    1196 69.6% 22-Dec-98 09:06:20 +call_infix.e
  433.     3875    1508 61.0% 22-Dec-98 09:06:30 +call_infix1.e
  434.     8065    2364 70.6% 22-Dec-98 09:06:30 +call_infix2.e
  435.     2534    1118 55.8% 22-Dec-98 09:06:20 +call_infix_and.e
  436.     2739    1206 55.9% 22-Dec-98 09:06:20 +call_infix_and_then.e
  437.     2205    1021 53.6% 22-Dec-98 09:06:20 +call_infix_div.e
  438.     5641    1644 70.8% 22-Dec-98 09:06:20 +call_infix_eq.e
  439.     2258    1045 53.7% 22-Dec-98 09:06:20 +call_infix_freeop.e
  440.     2920    1215 58.3% 22-Dec-98 09:06:20 +call_infix_ge.e
  441.     2919    1213 58.4% 22-Dec-98 09:06:22 +call_infix_gt.e
  442.     2520    1112 55.8% 22-Dec-98 09:06:22 +call_infix_implies.e
  443.     2439    1105 54.6% 22-Dec-98 09:06:22 +call_infix_int_div.e
  444.     2449    1111 54.6% 22-Dec-98 09:06:22 +call_infix_int_rem.e
  445.     2924    1213 58.5% 22-Dec-98 09:06:22 +call_infix_le.e
  446.     2926    1215 58.4% 22-Dec-98 09:06:22 +call_infix_lt.e
  447.     2858    1187 58.4% 22-Dec-98 09:06:22 +call_infix_minus.e
  448.     6795    1950 71.3% 22-Dec-98 09:06:22 +call_infix_neq.e
  449.     2496    1110 55.5% 22-Dec-98 09:06:22 +call_infix_or.e
  450.     2773    1192 57.0% 22-Dec-98 09:06:22 +call_infix_or_else.e
  451.     2924    1194 59.1% 22-Dec-98 09:06:22 +call_infix_plus.e
  452.     2422    1096 54.7% 22-Dec-98 09:06:22 +call_infix_power.e
  453.     2427    1099 54.7% 22-Dec-98 09:06:22 +call_infix_times.e
  454.     2541    1124 55.7% 22-Dec-98 09:06:22 +call_infix_xor.e
  455.     5027    1713 65.9% 22-Dec-98 09:06:20 +call_n.e
  456.     3036    1215 59.9% 22-Dec-98 09:06:22 +call_prefix.e
  457.     2608    1098 57.8% 22-Dec-98 09:06:22 +call_prefix_freeop.e
  458.     2818    1153 59.0% 22-Dec-98 09:06:22 +call_prefix_minus.e
  459.     2820    1146 59.3% 22-Dec-98 09:06:22 +call_prefix_not.e
  460.     2423    1036 57.2% 22-Dec-98 09:06:22 +call_prefix_plus.e
  461.     4423    1642 62.8% 22-Dec-98 09:06:22 +call_proc_call.e
  462.     1589     861 45.8% 22-Dec-98 09:06:22 +cecil_arg_list.e
  463.     5775    2107 63.5% 22-Dec-98 09:06:24 +cecil_pool.e
  464.     3217    1258 60.8% 22-Dec-98 09:06:24 +cecil_target.e
  465.     3314    1293 60.9% 22-Dec-98 09:06:20 +character_constant.e
  466.     1277     708 44.5% 22-Dec-98 09:06:24 +check_invariant.e
  467.     5236    1832 65.0% 22-Dec-98 09:06:22 +class_invariant.e
  468.     4720    1544 67.2% 22-Dec-98 09:06:24 +class_name.e
  469.     4094    1515 62.9% 22-Dec-98 09:06:24 +class_name_list.e
  470.     3014    1179 60.8% 22-Dec-98 09:06:22 +clean.e
  471.     4223    1506 64.3% 22-Dec-98 09:06:24 +client_list.e
  472.    28513    5595 80.3% 22-Dec-98 09:06:24 +code_attribute.e
  473.     7400    2509 66.0% 22-Dec-98 09:06:24 +code_printer.e
  474.     4137    1650 60.1% 22-Dec-98 09:06:22 +comment.e
  475.     4727    1759 62.7% 22-Dec-98 09:06:20 +compile.e
  476.     1626     859 47.1% 22-Dec-98 09:06:24 +compile_to.e
  477.     5475    1680 69.3% 22-Dec-98 09:06:20 +compile_to_c.e
  478.     4327    1413 67.3% 22-Dec-98 09:06:24 +compile_to_jvm.e
  479.     6369    2049 67.8% 22-Dec-98 09:06:24 +compound.e
  480.    13479    2951 78.1% 22-Dec-98 09:06:22 +constant_pool.e
  481.     7329    1952 73.3% 22-Dec-98 09:06:22 +cp_info.e
  482.     3114    1239 60.2% 22-Dec-98 09:06:24 +cp_info_tags.e
  483.     4458    1808 59.4% 22-Dec-98 09:06:24 +creation_call.e
  484.     2469    1096 55.6% 22-Dec-98 09:06:24 +creation_call_1.e
  485.     1555     847 45.5% 22-Dec-98 09:06:24 +creation_call_1_2.e
  486.     2470    1104 55.3% 22-Dec-98 09:06:24 +creation_call_2.e
  487.     1556     840 46.0% 22-Dec-98 09:06:24 +creation_call_2_4.e
  488.     2722    1193 56.1% 22-Dec-98 09:06:24 +creation_call_3.e
  489.     4827    1703 64.7% 22-Dec-98 09:06:24 +creation_call_3_4.e
  490.     2779    1218 56.1% 22-Dec-98 09:06:24 +creation_call_4.e
  491.     4746    1728 63.5% 22-Dec-98 09:06:24 +creation_clause.e
  492.     3240    1294 60.0% 22-Dec-98 09:06:22 +creation_clause_list.e
  493.     1890    1009 46.6% 22-Dec-98 09:06:24 +cst_att.e
  494.     1505     786 47.7% 22-Dec-98 09:06:24 +cst_att_bit.e
  495.     1524     790 48.1% 22-Dec-98 09:06:24 +cst_att_boolean.e
  496.     1541     798 48.2% 22-Dec-98 09:06:24 +cst_att_character.e
  497.     1519     788 48.1% 22-Dec-98 09:06:24 +cst_att_double.e
  498.     1524     786 48.4% 22-Dec-98 09:06:24 +cst_att_integer.e
  499.     1509     789 47.7% 22-Dec-98 09:06:24 +cst_att_real.e
  500.     1846     923 50.0% 22-Dec-98 09:06:26 +cst_att_string.e
  501.     1918     979 48.9% 22-Dec-98 09:06:26 +cst_att_unique.e
  502.     1666     851 48.9% 22-Dec-98 09:06:24 +declaration.e
  503.     1935     960 50.3% 22-Dec-98 09:06:22 +declaration_1.e
  504.     3128    1239 60.3% 22-Dec-98 09:06:22 +declaration_group.e
  505.     5561    1949 64.9% 22-Dec-98 09:06:26 +declaration_list.e
  506.     1764     897 49.1% 22-Dec-98 09:06:26 +deferred_function.e
  507.     1703     883 48.1% 22-Dec-98 09:06:26 +deferred_procedure.e
  508.     2033    1034 49.1% 22-Dec-98 09:06:26 +deferred_routine.e
  509.     3271    1291 60.5% 22-Dec-98 09:06:26 +e_check.e
  510.     3339    1304 60.9% 22-Dec-98 09:06:26 +e_debug.e
  511.     4318    1421 67.0% 22-Dec-98 09:06:26 +e_ensure.e
  512.     1791     867 51.5% 22-Dec-98 09:06:26 +e_false.e
  513.    12039    3499 70.9% 22-Dec-98 09:06:24 +e_feature.e
  514.     7057    2153 69.4% 22-Dec-98 09:06:26 +e_inspect.e
  515.     8090    2204 72.7% 22-Dec-98 09:06:26 +e_loop.e
  516.     6141    1988 67.6% 22-Dec-98 09:06:20 +e_old.e
  517.     4064    1665 59.0% 22-Dec-98 09:06:30 +e_precursor.e
  518.     4068    1515 62.7% 22-Dec-98 09:06:30 +e_precursor_function.e
  519.     2338    1147 50.9% 22-Dec-98 09:06:30 +e_precursor_procedure.e
  520.     3371    1258 62.6% 22-Dec-98 09:06:26 +e_require.e
  521.     2384    1126 52.7% 22-Dec-98 09:06:26 +e_retry.e
  522.     7040    2280 67.6% 22-Dec-98 09:06:26 +e_strip.e
  523.     1785     864 51.5% 22-Dec-98 09:06:26 +e_true.e
  524.     3402    1321 61.1% 22-Dec-98 09:06:26 +e_void.e
  525.    10620    2906 72.6% 22-Dec-98 09:06:26 +e_when.e
  526.     5195    1752 66.2% 22-Dec-98 09:06:24 +echo.e
  527.    12666    3192 74.7% 22-Dec-98 09:06:26 +effective_arg_list.e
  528.     2544    1117 56.0% 22-Dec-98 09:06:26 +effective_routine.e
  529.   114054   23760 79.1% 22-Dec-98 09:06:20 +eiffel_parser.e
  530.     6042    2013 66.6% 22-Dec-98 09:06:24 +error_handler.e
  531.     2426    1053 56.5% 22-Dec-98 09:06:26 +exception_table.e
  532.     2459    1131 54.0% 22-Dec-98 09:06:30 +exceptions_handler.e
  533.     2031     966 52.4% 22-Dec-98 09:06:26 +export_item.e
  534.     2377    1133 52.3% 22-Dec-98 09:06:26 +export_list.e
  535.     9507    2934 69.1% 22-Dec-98 09:06:20 +expression.e
  536.     4890    1442 70.5% 22-Dec-98 09:06:26 +expression_with_comment.e
  537.     1962    1007 48.6% 22-Dec-98 09:06:26 +external_function.e
  538.     1851     961 48.0% 22-Dec-98 09:06:26 +external_procedure.e
  539.     2635    1218 53.7% 22-Dec-98 09:06:24 +external_routine.e
  540.     4321    1623 62.4% 22-Dec-98 09:06:24 +feature_clause.e
  541.     2405    1089 54.7% 22-Dec-98 09:06:26 +feature_clause_list.e
  542.     2947    1281 56.5% 22-Dec-98 09:06:24 +feature_name.e
  543.     6485    2100 67.6% 22-Dec-98 09:06:22 +feature_name_list.e
  544.     1811     936 48.3% 22-Dec-98 09:06:26 +field_info.e
  545.     1627     859 47.2% 22-Dec-98 09:06:26 +finder.e
  546.     7396    2218 70.0% 22-Dec-98 09:06:26 +fmt.e
  547.     7074    2348 66.8% 22-Dec-98 09:06:26 +formal_arg_list.e
  548.     2444    1102 54.9% 22-Dec-98 09:06:22 +formal_generic_arg.e
  549.     3437    1413 58.8% 22-Dec-98 09:06:22 +formal_generic_list.e
  550.     2125     945 55.5% 22-Dec-98 09:06:32 +frozen_feature_name.e
  551.    12214    3100 74.6% 22-Dec-98 09:06:30 +frozen_string_list.e
  552.     2973    1396 53.0% 22-Dec-98 09:06:26 +function.e
  553.    12074    3540 70.6% 22-Dec-98 09:06:24 +gc_handler.e
  554.    12641    3826 69.7% 22-Dec-98 09:06:20 +globals.e
  555.     3424    1457 57.4% 22-Dec-98 09:06:26 +id_provider.e
  556.     1141     645 43.4% 22-Dec-98 09:06:28 +if_globals.e
  557.     5706    1851 67.5% 22-Dec-98 09:06:26 +ifthen.e
  558.     4988    1695 66.0% 22-Dec-98 09:06:28 +ifthenelse.e
  559.     5082    1633 67.8% 22-Dec-98 09:06:28 +ifthenlist.e
  560.     4975    1511 69.6% 22-Dec-98 09:06:32 +implicit_cast.e
  561.     1146     655 42.8% 22-Dec-98 09:06:32 +implicit_current.e
  562.     2160    1024 52.5% 22-Dec-98 09:06:28 +index_clause.e
  563.     2016     997 50.5% 22-Dec-98 09:06:28 +index_list.e
  564.     2277    1038 54.4% 22-Dec-98 09:06:24 +infix_name.e
  565.     3635    1492 58.9% 22-Dec-98 09:06:28 +instruction.e
  566.     2946    1181 59.9% 22-Dec-98 09:06:28 +instruction_with_comment.e
  567.     2642    1126 57.3% 22-Dec-98 09:06:28 +integer_constant.e
  568.    21733    5387 75.2% 22-Dec-98 09:06:20 +jvm.e
  569.     3014    1265 58.0% 22-Dec-98 09:06:24 +local_argument.e
  570.     2238    1058 52.7% 22-Dec-98 09:06:30 +local_argument1.e
  571.     4436    1379 68.9% 22-Dec-98 09:06:26 +local_name.e
  572.     3383    1435 57.5% 22-Dec-98 09:06:28 +local_name1.e
  573.     2052    1008 50.8% 22-Dec-98 09:06:28 +local_name2.e
  574.     3654    1442 60.5% 22-Dec-98 09:06:28 +local_var_list.e
  575.     1329     731 44.9% 22-Dec-98 09:06:28 +loop_invariant.e
  576.     2461    1088 55.7% 22-Dec-98 09:06:28 +loop_variant.e
  577.     1478     762 48.4% 22-Dec-98 09:06:28 +loop_variant_1.e
  578.     1625     830 48.9% 22-Dec-98 09:06:28 +loop_variant_2.e
  579.     9915    2768 72.0% 22-Dec-98 09:06:28 +manifest_array.e
  580.     4390    1662 62.1% 22-Dec-98 09:06:30 +manifest_array_pool.e
  581.     8087    2493 69.1% 22-Dec-98 09:06:28 +manifest_string.e
  582.     7880    2415 69.3% 22-Dec-98 09:06:28 +manifest_string_pool.e
  583.     2733    1232 54.9% 22-Dec-98 09:06:28 +method_info.e
  584.     2744    1193 56.5% 22-Dec-98 09:06:28 +name.e
  585.     4699    1207 74.3% 22-Dec-98 09:06:28 +native.e
  586.     3548    1275 64.0% 22-Dec-98 09:06:24 +native_c.e
  587.     2026     864 57.3% 22-Dec-98 09:06:28 +native_inline_with_current.e
  588.     2172     939 56.7% 22-Dec-98 09:06:24 +native_inline_without_current.e
  589.     2668    1088 59.2% 22-Dec-98 09:06:24 +native_jvm.e
  590.     2146     958 55.3% 22-Dec-98 09:06:30 +native_jvm_invokestatic.e
  591.     2150     960 55.3% 22-Dec-98 09:06:30 +native_jvm_invokevirtual.e
  592.    62641   10138 83.8% 22-Dec-98 09:06:22 +native_small_eiffel.e
  593.     2018     854 57.6% 22-Dec-98 09:06:28 +native_with_current.e
  594.     2008     859 57.2% 22-Dec-98 09:06:28 +native_without_current.e
  595.     1858     967 47.9% 22-Dec-98 09:06:28 +once_function.e
  596.     1628     868 46.6% 22-Dec-98 09:06:28 +once_procedure.e
  597.     1908     942 50.6% 22-Dec-98 09:06:32 +once_result.e
  598.     1404     802 42.8% 22-Dec-98 09:06:28 +once_routine.e
  599.     6487    1910 70.5% 22-Dec-98 09:06:26 +once_routine_pool.e
  600.     1875     951 49.2% 22-Dec-98 09:06:32 +ordinary_result.e
  601.    17431    4346 75.0% 22-Dec-98 09:06:22 +parent.e
  602.    13238    3221 75.6% 22-Dec-98 09:06:22 +parent_list.e
  603.     2997    1325 55.7% 22-Dec-98 09:06:22 +parser_buffer.e
  604.     5552    1812 67.3% 22-Dec-98 09:06:28 +position.e
  605.     2256    1038 53.9% 22-Dec-98 09:06:30 +precursor_name.e
  606.     2471    1111 55.0% 22-Dec-98 09:06:24 +prefix_name.e
  607.     4599    1661 63.8% 22-Dec-98 09:06:24 +pretty.e
  608.    48401    8010 83.4% 22-Dec-98 09:06:20 +print_jvm_class.e
  609.     2369    1130 52.3% 22-Dec-98 09:06:28 +proc_call.e
  610.     3151    1266 59.8% 22-Dec-98 09:06:28 +proc_call_0.e
  611.     3916    1504 61.5% 22-Dec-98 09:06:28 +proc_call_1.e
  612.     3363    1298 61.4% 22-Dec-98 09:06:28 +proc_call_n.e
  613.     2823    1333 52.7% 22-Dec-98 09:06:28 +procedure.e
  614.     2488    1133 54.4% 22-Dec-98 09:06:28 +real_constant.e
  615.     4270    1535 64.0% 22-Dec-98 09:06:28 +rename_list.e
  616.     1760     904 48.6% 22-Dec-98 09:06:28 +rename_pair.e
  617.     6037    1996 66.9% 22-Dec-98 09:06:28 +reverse_assignment.e
  618.     3827    1452 62.0% 22-Dec-98 09:06:30 +routine.e
  619.    42686   11107 73.9% 22-Dec-98 09:06:20 +run_class.e
  620.     5111    1768 65.4% 22-Dec-98 09:06:30 +run_control.e
  621.    27002    6550 75.7% 22-Dec-98 09:06:20 +run_feature.e
  622.     3209    1354 57.8% 22-Dec-98 09:06:30 +run_feature_1.e
  623.     3768    1452 61.4% 22-Dec-98 09:06:30 +run_feature_10.e
  624.     4118    1536 62.7% 22-Dec-98 09:06:30 +run_feature_11.e
  625.     4344    1589 63.4% 22-Dec-98 09:06:30 +run_feature_2.e
  626.    14402    3677 74.4% 22-Dec-98 09:06:30 +run_feature_3.e
  627.    17708    4221 76.1% 22-Dec-98 09:06:18 +run_feature_4.e
  628.     4649    1684 63.7% 22-Dec-98 09:06:30 +run_feature_5.e
  629.     8110    2488 69.3% 22-Dec-98 09:06:30 +run_feature_6.e
  630.     4637    1553 66.5% 22-Dec-98 09:06:24 +run_feature_7.e
  631.     7193    2155 70.0% 22-Dec-98 09:06:22 +run_feature_8.e
  632.     3884    1471 62.1% 22-Dec-98 09:06:30 +run_feature_9.e
  633.     3882    1474 62.0% 22-Dec-98 09:06:20 +run_require.e
  634.     3359    1237 63.1% 22-Dec-98 09:06:30 +same_executables.e
  635.     6326    2212 65.0% 22-Dec-98 09:06:18 +short.e
  636.     7488    2297 69.3% 22-Dec-98 09:06:20 +short_print.e
  637.     6508    2218 65.9% 22-Dec-98 09:06:26 +simple_feature_name.e
  638.    25971    6257 75.9% 22-Dec-98 09:06:22 +small_eiffel.e
  639.    11283    3235 71.3% 22-Dec-98 09:06:30 +switch.e
  640.     5485    1676 69.4% 22-Dec-98 09:06:30 +switch_collection.e
  641.    17091    4308 74.7% 22-Dec-98 09:06:30 +system_tools.e
  642.     1833     925 49.5% 22-Dec-98 09:06:28 +tag_name.e
  643.     8174    2226 72.7% 22-Dec-98 09:06:30 +tmp_feature.e
  644.     6479    1895 70.7% 22-Dec-98 09:06:30 +tmp_name.e
  645.    35384    7663 78.3% 22-Dec-98 09:06:20 +type.e
  646.     8129    2027 75.0% 22-Dec-98 09:06:26 +type_anchored.e
  647.     6803    2087 69.3% 22-Dec-98 09:06:26 +type_any.e
  648.    10345    2876 72.1% 22-Dec-98 09:06:26 +type_array.e
  649.     4209    1552 63.1% 22-Dec-98 09:06:26 +type_basic_eiffel_expanded.e
  650.    12040    3198 73.4% 22-Dec-98 09:06:26 +type_bit.e
  651.     1897     956 49.6% 22-Dec-98 09:06:24 +type_bit_1.e
  652.     2948    1274 56.7% 22-Dec-98 09:06:22 +type_bit_2.e
  653.     7540    2202 70.7% 22-Dec-98 09:06:28 +type_bit_ref.e
  654.     4946    1699 65.6% 22-Dec-98 09:06:30 +type_boolean.e
  655.     4989    1707 65.7% 22-Dec-98 09:06:30 +type_character.e
  656.    10398    2662 74.3% 22-Dec-98 09:06:28 +type_class.e
  657.     5403    1771 67.2% 22-Dec-98 09:06:30 +type_double.e
  658.    11214    2870 74.4% 22-Dec-98 09:06:22 +type_expanded.e
  659.     9930    2541 74.4% 22-Dec-98 09:06:28 +type_formal_generic.e
  660.    14009    3464 75.2% 22-Dec-98 09:06:28 +type_generic.e
  661.     5375    1782 66.8% 22-Dec-98 09:06:30 +type_integer.e
  662.     3542    1398 60.5% 22-Dec-98 09:06:28 +type_like_argument.e
  663.     2435    1037 57.4% 22-Dec-98 09:06:28 +type_like_current.e
  664.     3458    1377 60.1% 22-Dec-98 09:06:26 +type_like_feature.e
  665.    13723    3786 72.4% 22-Dec-98 09:06:26 +type_native_array.e
  666.     5355    1666 68.8% 22-Dec-98 09:06:24 +type_none.e
  667.     4997    1719 65.5% 22-Dec-98 09:06:30 +type_pointer.e
  668.     5402    1808 66.5% 22-Dec-98 09:06:30 +type_real.e
  669.     8677    2458 71.6% 22-Dec-98 09:06:30 +type_ref_to_exp.e
  670.     6841    2043 70.1% 22-Dec-98 09:06:26 +type_string.e
  671.     6781    2184 67.7% 22-Dec-98 09:06:22 +unique_string.e
  672.     9252    2209 76.1% 22-Dec-98 09:06:30 +unique_string_list.e
  673.     1733     834 51.8% 22-Dec-98 09:06:30 +when_item.e
  674.     3062    1142 62.7% 22-Dec-98 09:06:30 +when_item_1.e
  675.     3550    1236 65.1% 22-Dec-98 09:06:30 +when_item_2.e
  676.     5965    1732 70.9% 22-Dec-98 09:06:30 +when_list.e
  677.     2635    1213 53.9% 22-Dec-98 09:06:30 +writable_attribute.e
  678.     1143     654 42.7% 22-Dec-98 09:06:32 +written_current.e
  679.      710     259 63.5% 22-Dec-98 09:06:32 +animal.e
  680.      302     183 39.4% 22-Dec-98 09:06:32 +chat.e
  681.      142     116 18.3% 22-Dec-98 09:06:32 +chien.e
  682.      148     120 18.9% 22-Dec-98 09:06:32 +mille_pattes.e
  683.      245     158 35.5% 22-Dec-98 09:06:32 +quadrupede.e
  684.      290     168 42.0% 22-Dec-98 09:06:32 +sample1.e
  685.      261     158 39.4% 22-Dec-98 09:06:32 +sample2.e
  686.      352     193 45.1% 22-Dec-98 09:06:32 +sample3.e
  687.     1199     681 43.2% 22-Dec-98 09:06:32 +array_bench.e
  688.      255     186 27.0% 22-Dec-98 09:06:32 +bench.csh
  689.     1855     958 48.3% 22-Dec-98 09:06:32 +bench.e
  690.     1227     686 44.0% 22-Dec-98 09:06:32 +fixed_array_bench.e
  691.     1336     738 44.7% 22-Dec-98 09:06:32 +link2_list_bench.e
  692.     1329     735 44.6% 22-Dec-98 09:06:32 +link_list_bench.e
  693.     1180     674 42.8% 22-Dec-98 09:06:32 +array_bench.e
  694.      255     186 27.0% 22-Dec-98 09:06:32 +bench.csh
  695.     2076    1011 51.3% 22-Dec-98 09:06:32 +bench.e
  696.     1190     673 43.4% 22-Dec-98 09:06:32 +fixed_array_bench.e
  697.     1307     728 44.2% 22-Dec-98 09:06:32 +link2_list_bench.e
  698.     1304     727 44.2% 22-Dec-98 09:06:32 +link_list_bench.e
  699.     1187     674 43.2% 22-Dec-98 09:06:32 +array2_bench.e
  700.      250     183 26.8% 22-Dec-98 09:06:32 +bench.csh
  701.     2413    1058 56.1% 22-Dec-98 09:06:32 +bench.e
  702.     1201     680 43.3% 22-Dec-98 09:06:32 +fixed_array2_bench.e
  703.     1189     675 43.2% 22-Dec-98 09:06:32 +array_bench.e
  704.      255     186 27.0% 22-Dec-98 09:06:32 +bench.csh
  705.     1789     936 47.6% 22-Dec-98 09:06:32 +bench.e
  706.     1223     685 43.9% 22-Dec-98 09:06:32 +fixed_array_bench.e
  707.     1215     683 43.7% 22-Dec-98 09:06:32 +link2_list_bench.e
  708.     1209     681 43.6% 22-Dec-98 09:06:32 +link_list_bench.e
  709.     1189     675 43.2% 22-Dec-98 09:06:32 +array_bench.e
  710.      255     186 27.0% 22-Dec-98 09:06:32 +bench.csh
  711.     1845     953 48.3% 22-Dec-98 09:06:32 +bench.e
  712.     1223     685 43.9% 22-Dec-98 09:06:32 +fixed_array_bench.e
  713.     1215     683 43.7% 22-Dec-98 09:06:32 +link2_list_bench.e
  714.     1209     681 43.6% 22-Dec-98 09:06:34 +link_list_bench.e
  715.      158      81 48.7% 22-Dec-98 09:06:34 +.gdb_history
  716.      182     106 41.7% 22-Dec-98 09:06:34 +c_prog.c
  717.      114      93 18.4% 22-Dec-98 09:06:34 +cecil.se
  718.      942     468 50.3% 22-Dec-98 09:06:34 +example.e
  719.        3       3  0.0% 22-Dec-98 09:06:34 +output
  720.      108      92 14.8% 22-Dec-98 09:06:34 +c_prog.c
  721.      125     102 18.4% 22-Dec-98 09:06:34 +cecil.se
  722.     1055     527 50.0% 22-Dec-98 09:06:34 +example.e
  723.        6       6  0.0% 22-Dec-98 09:06:34 +output
  724.      249     147 40.9% 22-Dec-98 09:06:34 +c_prog.c
  725.      205     129 37.0% 22-Dec-98 09:06:34 +cecil.se
  726.      698     402 42.4% 22-Dec-98 09:06:34 +example.e
  727.        6       6  0.0% 22-Dec-98 09:06:34 +output
  728.      990     237 76.0% 22-Dec-98 09:06:34 +.gdb_history
  729.      198     156 21.2% 22-Dec-98 09:06:34 +animal.e
  730.      362     187 48.3% 22-Dec-98 09:06:34 +c_prog.c
  731.      195     162 16.9% 22-Dec-98 09:06:34 +cat.e
  732.      268     162 39.5% 22-Dec-98 09:06:34 +cecil.se
  733.      228     181 20.6% 22-Dec-98 09:06:34 +dog.e
  734.      774     441 43.0% 22-Dec-98 09:06:34 +example.e
  735.       15      15  0.0% 22-Dec-98 09:06:34 +output
  736.      104      88 15.3% 22-Dec-98 09:06:34 +c_prog.c
  737.      118     104 11.8% 22-Dec-98 09:06:34 +cecil.se
  738.      857     447 47.8% 22-Dec-98 09:06:34 +example.e
  739.       10      10  0.0% 22-Dec-98 09:06:34 +output
  740.      126     107 15.0% 22-Dec-98 09:06:34 +c_prog.c
  741.      113      95 15.9% 22-Dec-98 09:06:34 +cecil.se
  742.     1041     510 51.0% 22-Dec-98 09:06:34 +example.e
  743.       61      43 29.5% 22-Dec-98 09:06:34 +output
  744.      482     244 49.3% 22-Dec-98 09:06:34 +c_prog.c
  745.      114      96 15.7% 22-Dec-98 09:06:34 +cecil.se
  746.     1170     588 49.7% 22-Dec-98 09:06:34 +example.e
  747.      113      62 45.1% 22-Dec-98 09:06:34 +output
  748.      163     131 19.6% 22-Dec-98 09:06:36 +c_factory.e
  749.      109      94 13.7% 22-Dec-98 09:06:34 +c_prog.c
  750.      121     102 15.7% 22-Dec-98 09:06:36 +cecil.se
  751.      627     355 43.3% 22-Dec-98 09:06:36 +example.e
  752.        4       4  0.0% 22-Dec-98 09:06:36 +output
  753.      634     273 56.9% 22-Dec-98 09:06:36 +Example1.java
  754.      593     271 54.3% 22-Dec-98 09:06:36 +Example2.java
  755.      244     132 45.9% 22-Dec-98 09:06:36 +root2.e
  756.      132     106 19.6% 22-Dec-98 09:06:34 +READ_ME
  757.      913     457 49.9% 22-Dec-98 09:06:38 +example01.e
  758.    21192    5392 74.5% 22-Dec-98 09:06:38 +example01.h
  759.      369      97 73.7% 22-Dec-98 09:06:38 +example01.make
  760.    15936    4292 73.0% 22-Dec-98 09:06:38 +example011.c
  761.      328     227 30.7% 22-Dec-98 09:06:38 +example0110.c
  762.     1618     560 65.3% 22-Dec-98 09:06:38 +example0111.c
  763.      328     227 30.7% 22-Dec-98 09:06:38 +example0112.c
  764.    14660    3703 74.7% 22-Dec-98 09:06:38 +example012.c
  765.    18146    3165 82.5% 22-Dec-98 09:06:38 +example013.c
  766.    24507    4349 82.2% 22-Dec-98 09:06:38 +example014.c
  767.     5602    1934 65.4% 22-Dec-98 09:06:38 +example015.c
  768.      616     321 47.8% 22-Dec-98 09:06:38 +example016.c
  769.      544     327 39.8% 22-Dec-98 09:06:38 +example017.c
  770.     2524    1098 56.4% 22-Dec-98 09:06:38 +example018.c
  771.    26287    3491 86.7% 22-Dec-98 09:06:38 +example019.c
  772.     4280    1117 73.9% 22-Dec-98 09:06:36 +address_of_demo.e
  773.      184     104 43.4% 22-Dec-98 09:06:36 +address_of_demo.out
  774.     1139     389 65.8% 22-Dec-98 09:06:36 +address_of_src.c
  775.     2158     712 67.0% 22-Dec-98 09:06:36 +external_demo.e
  776.       79      56 29.1% 22-Dec-98 09:06:36 +external_demo.out
  777.      663     308 53.5% 22-Dec-98 09:06:36 +external_src.c
  778.       67      64  4.4% 22-Dec-98 09:06:36 +READ_ME
  779.     1307     482 63.1% 22-Dec-98 09:06:36 +example1.e
  780.      187      78 58.2% 22-Dec-98 09:06:36 +example1.out
  781.      975     464 52.4% 22-Dec-98 09:06:36 +example2.e
  782.       86      75 12.7% 22-Dec-98 09:06:36 +example2.out
  783.      112      87 22.3% 22-Dec-98 09:06:36 +READ_ME
  784.     1601     827 48.3% 22-Dec-98 09:06:36 +fibonacci.e
  785.      357     166 53.5% 22-Dec-98 09:06:36 +gcd
  786.     6147    2170 64.6% 22-Dec-98 09:06:36 +integer.e
  787.     1347     731 45.7% 22-Dec-98 09:06:36 +test_gcd.e
  788.      303     147 51.4% 22-Dec-98 09:06:36 +.gdb_history
  789.   137187   47516 65.3% 22-Dec-98 09:06:36 +hanoi
  790.     2675    1131 57.7% 22-Dec-98 09:06:36 +hanoi.e
  791.     3222    1223 62.0% 22-Dec-98 09:06:36 +tower.e
  792.      355     216 39.1% 22-Dec-98 09:06:36 +hello_world.e
  793.     5202    1977 61.9% 22-Dec-98 09:06:36 +knight.e
  794.       47      47  0.0% 01-Jan-99 21:38:02 +koe
  795.     3322    1308 60.6% 22-Dec-98 09:06:36 +command.e
  796.     2993    1321 55.8% 22-Dec-98 09:06:36 +date.e
  797.     2754    1201 56.3% 22-Dec-98 09:06:36 +level.e
  798.     3398    1308 61.5% 22-Dec-98 09:06:36 +parking.e
  799.     3272    1276 61.0% 22-Dec-98 09:06:36 +run_parking.e
  800.     1637     840 48.6% 22-Dec-98 09:06:36 +ticket.e
  801.     1397     762 45.4% 22-Dec-98 09:06:36 +print_arguments.e
  802.     6321    2093 66.8% 22-Dec-98 09:06:38 +pyramid.e
  803.     4315    1740 59.6% 22-Dec-98 09:06:38 +pyramid2.e
  804.     7616    2306 69.7% 22-Dec-98 09:06:38 +spread_illness.e
  805.      949     570 39.9% 22-Dec-98 09:06:38 +any.e
  806.      878     540 38.4% 22-Dec-98 09:06:38 +arguments.e
  807.     7765    2128 72.5% 22-Dec-98 09:06:38 +array.e
  808.    10103    2786 72.4% 22-Dec-98 09:06:38 +array2.e
  809.     2730    1222 55.2% 22-Dec-98 09:06:38 +arrayed_collection.e
  810.     7759    2442 68.5% 22-Dec-98 09:06:38 +bit_n.e
  811.     1302     703 46.0% 22-Dec-98 09:06:38 +bit_n_ref.e
  812.     2796    1001 64.1% 22-Dec-98 09:06:38 +boolean.e
  813.     2694     903 66.4% 22-Dec-98 09:06:38 +boolean_ref.e
  814.     6763    2016 70.1% 22-Dec-98 09:06:38 +character.e
  815.     1829     803 56.0% 22-Dec-98 09:06:38 +character_ref.e
  816.    11627    3237 72.1% 22-Dec-98 09:06:38 +collection.e
  817.    10461    2867 72.5% 22-Dec-98 09:06:38 +collection2.e
  818.     3262    1080 66.8% 22-Dec-98 09:06:38 +comparable.e
  819.     1105     569 48.5% 22-Dec-98 09:06:38 +counter.e
  820.    14950    3811 74.5% 22-Dec-98 09:06:38 +dictionary.e
  821.      964     565 41.3% 22-Dec-98 09:06:40 +dirent.e
  822.     6944    1991 71.3% 22-Dec-98 09:06:38 +double.e
  823.     2520     855 66.0% 22-Dec-98 09:06:38 +double_ref.e
  824.     4093    1491 63.5% 22-Dec-98 09:06:40 +exceptions.e
  825.     2666    1040 60.9% 22-Dec-98 09:06:38 +file_tools.e
  826.     6991    2001 71.3% 22-Dec-98 09:06:38 +fixed_array.e
  827.     8090    2596 67.9% 22-Dec-98 09:06:40 +fixed_array2.e
  828.    17723    5027 71.6% 22-Dec-98 09:06:40 +general.e
  829.      875     535 38.8% 22-Dec-98 09:06:40 +hashable.e
  830.     9927    2588 73.9% 22-Dec-98 09:06:40 +input_stream.e
  831.     7448    2194 70.5% 22-Dec-98 09:06:40 +integer.e
  832.     2852     921 67.7% 22-Dec-98 09:06:40 +integer_ref.e
  833.     1488     714 52.0% 22-Dec-98 09:06:40 +link.e
  834.     1238     642 48.1% 22-Dec-98 09:06:40 +link2.e
  835.     3947    1201 69.5% 22-Dec-98 09:06:40 +link2_list.e
  836.     3075    1039 66.2% 22-Dec-98 09:06:40 +link_list.e
  837.     6951    2101 69.7% 22-Dec-98 09:06:40 +linked_collection.e
  838.      968     557 42.4% 22-Dec-98 09:06:40 +memo.e
  839.     2674    1137 57.4% 22-Dec-98 09:06:40 +memory.e
  840.    10751    2915 72.8% 22-Dec-98 09:06:40 +native_array.e
  841.     2779    1043 62.4% 22-Dec-98 09:06:40 +numeric.e
  842.     4639    1482 68.0% 22-Dec-98 09:06:40 +output_stream.e
  843.     3074     861 71.9% 22-Dec-98 09:06:40 +platform.e
  844.     2424    1138 53.0% 22-Dec-98 09:06:40 +pointer.e
  845.      930     545 41.3% 22-Dec-98 09:06:40 +pointer_ref.e
  846.     5722    1684 70.5% 22-Dec-98 09:06:40 +real.e
  847.     2471     845 65.8% 22-Dec-98 09:06:40 +real_ref.e
  848.     1342     753 43.8% 22-Dec-98 09:06:40 +std_error.e
  849.     3460    1378 60.1% 22-Dec-98 09:06:38 +std_file_read.e
  850.     2416    1039 56.9% 22-Dec-98 09:06:40 +std_file_read_write.e
  851.     2095     986 52.9% 22-Dec-98 09:06:40 +std_file_write.e
  852.     2234    1028 53.9% 22-Dec-98 09:06:40 +std_input.e
  853.      943     544 42.3% 22-Dec-98 09:06:40 +std_input_output.e
  854.     1409     762 45.9% 22-Dec-98 09:06:40 +std_output.e
  855.    24594    6211 74.7% 22-Dec-98 09:06:40 +string.e
  856.      138     115 16.6% 22-Dec-98 09:07:58 +Makefile
  857.     4047    1743 56.9% 22-Dec-98 09:06:42 +cecil.html
  858.     3444    1410 59.0% 22-Dec-98 09:06:42 +cecil.txt
  859.     2141     877 59.0% 22-Dec-98 09:06:42 +clean.html
  860.     1223     545 55.4% 22-Dec-98 09:06:42 +clean.txt
  861.     5728    2140 62.6% 22-Dec-98 09:06:40 +compile.html
  862.     4422    1696 61.6% 22-Dec-98 09:06:40 +compile.txt
  863.     8634    3205 62.8% 22-Dec-98 09:06:40 +compile_to_c.html
  864.     7757    2823 63.6% 22-Dec-98 09:06:40 +compile_to_c.txt
  865.     4747    1645 65.3% 22-Dec-98 09:06:40 +compile_to_jvm.html
  866.     3160    1255 60.2% 22-Dec-98 09:06:40 +compile_to_jvm.txt
  867.    52537   20765 60.4% 22-Dec-98 09:06:40 +Eiffel.FAQ
  868.     5609    1999 64.3% 22-Dec-98 09:06:42 +external.html
  869.     4161    1660 60.1% 22-Dec-98 09:06:42 +external.txt
  870.     4659    1892 59.3% 22-Dec-98 09:06:42 +finder.html
  871.     3712    1550 58.2% 22-Dec-98 09:06:42 +finder.txt
  872.     3406    1397 58.9% 22-Dec-98 09:06:40 +pretty.html
  873.     2583    1065 58.7% 22-Dec-98 09:06:40 +pretty.txt
  874.     2175     932 57.1% 22-Dec-98 09:06:42 +print_jvm_class.html
  875.     1448     608 58.0% 22-Dec-98 09:06:42 +print_jvm_class.txt
  876.    35278    4589 86.9% 22-Dec-98 09:06:40 +short.html
  877.    26752    4058 84.8% 22-Dec-98 09:06:42 +short.txt
  878.    11460    3471 69.7% 22-Dec-98 09:06:42 +SmallEiffelFAQ.html
  879.     8505    2969 65.0% 22-Dec-98 09:06:42 +SmallEiffelFAQ.txt
  880.     3448    1396 59.5% 22-Dec-98 09:06:42 +support.html
  881.     2713    1143 57.8% 22-Dec-98 09:06:42 +support.txt
  882.     5088    1700 66.5% 22-Dec-98 09:06:42 +system.html
  883.     3448    1365 60.4% 22-Dec-98 09:06:42 +system.txt
  884.      247     158 36.0% 22-Dec-98 09:06:42 +bench.e
  885.      534     270 49.4% 22-Dec-98 09:06:42 +bench.e
  886.      129     102 20.9% 22-Dec-98 09:06:42 +point.e
  887.      160     117 26.8% 22-Dec-98 09:06:42 +triangle.e
  888.      510     246 51.7% 22-Dec-98 09:06:42 +bench.e
  889.      227     122 46.2% 22-Dec-98 09:06:42 +link.e
  890.      542     264 51.2% 22-Dec-98 09:06:42 +bench.e
  891.      177     113 36.1% 22-Dec-98 09:06:44 +point.e
  892.      400     216 46.0% 22-Dec-98 09:06:44 +bench.e
  893.      177     113 36.1% 22-Dec-98 09:06:44 +point.e
  894.      316     193 38.9% 22-Dec-98 09:06:44 +bench.e
  895.      125      99 20.8% 22-Dec-98 09:06:44 +point.e
  896.      160     117 26.8% 22-Dec-98 09:06:44 +triangle.e
  897.      362     194 46.4% 22-Dec-98 09:06:44 +bench.e
  898.      362     194 46.4% 22-Dec-98 09:06:44 +bench.e
  899.      453     249 45.0% 22-Dec-98 09:06:44 +bench.e
  900.     1927     935 51.4% 22-Dec-98 09:06:44 +std_rand.e
  901.      310     179 42.2% 22-Dec-98 09:06:44 +bench.e
  902.       59      59  0.0% 22-Dec-98 09:06:44 +apple.e
  903.      397     217 45.3% 22-Dec-98 09:06:44 +bench.e
  904.      119      84 29.4% 22-Dec-98 09:06:44 +fruit.e
  905.      615     276 55.1% 22-Dec-98 09:06:44 +bench.e
  906.       59      59  0.0% 22-Dec-98 09:06:44 +apple.e
  907.      374     187 50.0% 22-Dec-98 09:06:44 +bench.e
  908.      118      88 25.4% 22-Dec-98 09:06:44 +fruit.e
  909.       63      59  6.3% 22-Dec-98 09:06:44 +peach.e
  910.       59      59  0.0% 22-Dec-98 09:06:44 +apple.e
  911.      702     289 58.8% 22-Dec-98 09:06:44 +bench.e
  912.      118      84 28.8% 22-Dec-98 09:06:44 +fruit.e
  913.       63      59  6.3% 22-Dec-98 09:06:44 +peach.e
  914.     1420     582 59.0% 22-Dec-98 09:06:42 +GC.SH
  915.      689     428 37.8% 22-Dec-98 09:06:42 +header.FREE
  916.     1006     568 43.5% 22-Dec-98 09:06:42 +header.GPL
  917.    24086    7431 69.1% 22-Dec-98 09:06:42 +HISTORY.html
  918.    21380    6841 68.0% 22-Dec-98 09:06:42 +HISTORY.txt
  919.    11127    3274 70.5% 22-Dec-98 09:06:42 +install.bat
  920.     2101     670 68.1% 22-Dec-98 09:06:42 +INSTALL.CSH
  921.     2400    1123 53.2% 22-Dec-98 09:06:42 +INSTALL.OS2
  922.     1328     672 49.3% 22-Dec-98 09:06:42 +INSTALL.READ_ME
  923.     1847     707 61.7% 22-Dec-98 09:06:42 +INSTALL.SH
  924.     3056    1461 52.1% 22-Dec-98 09:06:42 +NOT_YET_IMPLEMENTED.html
  925.     2760    1216 55.9% 22-Dec-98 09:06:42 +NOT_YET_IMPLEMENTED.txt
  926.     4741    1893 60.0% 22-Dec-98 09:06:44 +people.html
  927.     3725    1570 57.8% 22-Dec-98 09:06:44 +people.txt
  928.      356     141 60.3% 22-Dec-98 09:06:42 +rename.se
  929.     1086     559 48.5% 22-Dec-98 09:06:42 +SmallEiffel.lsm
  930.    11988    3379 71.8% 22-Dec-98 09:06:42 +THANKS.html
  931.     6413    2866 55.3% 22-Dec-98 09:06:42 +THANKS.txt
  932.     3532    1695 52.0% 22-Dec-98 09:06:44 +READ_ME
  933.        4       4  0.0% 22-Dec-98 09:06:46 +Acn
  934.        9       9  0.0% 22-Dec-98 09:06:46 +Bcn
  935.        4       4  0.0% 22-Dec-98 09:06:48 +cl_quote
  936.      130     104 20.0% 22-Dec-98 09:06:46 +hook000
  937.       42      42  0.0% 22-Dec-98 09:06:46 +hook010
  938.       42      41  2.3% 22-Dec-98 09:06:48 +hook011
  939.       33      33  0.0% 22-Dec-98 09:06:48 +hook012
  940.        4       4  0.0% 22-Dec-98 09:06:46 +hook015
  941.        6       6  0.0% 22-Dec-98 09:06:46 +hook018
  942.        1       1  0.0% 22-Dec-98 09:06:46 +hook019
  943.       26      26  0.0% 22-Dec-98 09:06:48 +hook100
  944.       33      33  0.0% 22-Dec-98 09:06:48 +hook200
  945.        1       1  0.0% 22-Dec-98 09:06:48 +hook201
  946.        5       5  0.0% 22-Dec-98 09:06:48 +hook203
  947.       33      33  0.0% 22-Dec-98 09:06:48 +hook204
  948.        5       5  0.0% 22-Dec-98 09:06:48 +hook205
  949.        6       6  0.0% 22-Dec-98 09:06:48 +hook208
  950.        4       4  0.0% 22-Dec-98 09:06:48 +hook310
  951.        5       5  0.0% 22-Dec-98 09:06:48 +hook313
  952.       31      31  0.0% 22-Dec-98 09:06:48 +hook401
  953.        4       4  0.0% 22-Dec-98 09:06:48 +hook413
  954.        5       5  0.0% 22-Dec-98 09:06:48 +hook416
  955.        4       4  0.0% 22-Dec-98 09:06:48 +hook427
  956.        5       5  0.0% 22-Dec-98 09:06:48 +hook430
  957.       30      30  0.0% 22-Dec-98 09:06:48 +hook511
  958.        4       4  0.0% 22-Dec-98 09:06:48 +hook513
  959.        5       5  0.0% 22-Dec-98 09:06:48 +hook516
  960.        4       4  0.0% 22-Dec-98 09:06:48 +hook527
  961.        5       5  0.0% 22-Dec-98 09:06:48 +hook530
  962.        1       1  0.0% 22-Dec-98 09:06:48 +hook599
  963.       27      27  0.0% 22-Dec-98 09:06:48 +hook811
  964.        4       4  0.0% 22-Dec-98 09:06:48 +hook813
  965.        5       5  0.0% 22-Dec-98 09:06:48 +hook816
  966.        4       4  0.0% 22-Dec-98 09:06:48 +hook827
  967.        5       5  0.0% 22-Dec-98 09:06:48 +hook830
  968.        9       9  0.0% 22-Dec-98 09:06:46 +hook900
  969.       23      23  0.0% 22-Dec-98 09:06:46 +hook999
  970.    23258    3395 85.4% 22-Dec-98 09:06:46 +hooks.sh
  971.     6698    2425 63.7% 22-Dec-98 09:06:48 +htmlshort
  972.      199     127 36.1% 22-Dec-98 09:06:48 +index.html
  973.        7       7  0.0% 22-Dec-98 09:06:48 +Mcn
  974.        5       5  0.0% 22-Dec-98 09:06:48 +op_quote
  975.      166     116 30.1% 22-Dec-98 09:06:48 +READ_ME
  976.      106      79 25.4% 22-Dec-98 09:06:44 +READ_ME
  977.       69      64  7.2% 22-Dec-98 09:06:44 +READ_ME
  978.       17      17  0.0% 22-Dec-98 09:06:46 +hook000
  979.       15      15  0.0% 22-Dec-98 09:06:46 +hook999
  980.      146     109 25.3% 22-Dec-98 09:06:46 +READ_ME
  981.        2       2  0.0% 22-Dec-98 09:06:44 +Acn
  982.        2       2  0.0% 22-Dec-98 09:06:44 +AECL
  983.       11      11  0.0% 22-Dec-98 09:06:44 +Bcn
  984.        5       5  0.0% 22-Dec-98 09:06:44 +BECL
  985.        7       7  0.0% 22-Dec-98 09:06:46 +cl_quote
  986.       19      19  0.0% 22-Dec-98 09:06:44 +hook000
  987.        2       2  0.0% 22-Dec-98 09:06:44 +hook013
  988.       16      16  0.0% 22-Dec-98 09:06:46 +hook100
  989.       18      18  0.0% 22-Dec-98 09:06:46 +hook200
  990.       23      23  0.0% 22-Dec-98 09:06:46 +hook202
  991.       23      23  0.0% 22-Dec-98 09:06:46 +hook204
  992.       21      21  0.0% 22-Dec-98 09:06:46 +hook401
  993.       26      26  0.0% 22-Dec-98 09:06:46 +hook402
  994.       20      20  0.0% 22-Dec-98 09:06:46 +hook511
  995.       17      17  0.0% 22-Dec-98 09:06:44 +hook811
  996.        5       5  0.0% 22-Dec-98 09:06:44 +hook900
  997.        2       2  0.0% 22-Dec-98 09:06:44 +hook904
  998.       12      12  0.0% 22-Dec-98 09:06:44 +hook999
  999.        2       2  0.0% 22-Dec-98 09:06:46 +op_quote
  1000.      133     101 24.0% 22-Dec-98 09:06:44 +READ_ME
  1001.       20      20  0.0% 22-Dec-98 09:06:46 +rem
  1002.        2       2  0.0% 22-Dec-98 09:06:44 +Uan
  1003.        2       2  0.0% 22-Dec-98 09:06:44 +Ucomment
  1004.        2       2  0.0% 22-Dec-98 09:06:44 +Usfn
  1005.        2       2  0.0% 22-Dec-98 09:06:44 +Utag
  1006.        2       2  0.0% 22-Dec-98 09:06:46 +Aan
  1007.        2       2  0.0% 22-Dec-98 09:06:46 +Acn
  1008.        2       2  0.0% 22-Dec-98 09:06:46 +AECL
  1009.        2       2  0.0% 22-Dec-98 09:06:46 +Asfn
  1010.        5       5  0.0% 22-Dec-98 09:06:46 +Ban
  1011.       11      11  0.0% 22-Dec-98 09:06:46 +Bcn
  1012.        5       5  0.0% 22-Dec-98 09:06:46 +BECL
  1013.       14      14  0.0% 22-Dec-98 09:06:46 +Bifn
  1014.       15      15  0.0% 22-Dec-98 09:06:46 +Bpfn
  1015.        5       5  0.0% 22-Dec-98 09:06:46 +Bsfn
  1016.        9       9  0.0% 22-Dec-98 09:06:46 +cl_quote
  1017.       14      14  0.0% 22-Dec-98 09:06:46 +close_sb
  1018.       14      14  0.0% 22-Dec-98 09:06:46 +Current
  1019.       19      19  0.0% 22-Dec-98 09:06:46 +hook000
  1020.        2       2  0.0% 22-Dec-98 09:06:46 +hook013
  1021.       16      16  0.0% 22-Dec-98 09:06:46 +hook100
  1022.       18      18  0.0% 22-Dec-98 09:06:46 +hook200
  1023.       23      23  0.0% 22-Dec-98 09:06:46 +hook204
  1024.       21      21  0.0% 22-Dec-98 09:06:46 +hook401
  1025.       26      26  0.0% 22-Dec-98 09:06:46 +hook402
  1026.       20      20  0.0% 22-Dec-98 09:06:46 +hook511
  1027.       17      17  0.0% 22-Dec-98 09:06:46 +hook811
  1028.        0       0  0.0% 22-Dec-98 09:06:46 +hook832
  1029.        5       5  0.0% 22-Dec-98 09:06:46 +hook900
  1030.        2       2  0.0% 22-Dec-98 09:06:46 +hook904
  1031.       12      12  0.0% 22-Dec-98 09:06:46 +hook999
  1032.        7       7  0.0% 22-Dec-98 09:06:46 +op_quote
  1033.       14      14  0.0% 22-Dec-98 09:06:46 +open_sb
  1034.      181     134 25.9% 22-Dec-98 09:06:46 +READ_ME
  1035.       24      24  0.0% 22-Dec-98 09:06:46 +rem
  1036.       13      13  0.0% 22-Dec-98 09:06:46 +Result
  1037.        2       2  0.0% 22-Dec-98 09:06:46 +Uan
  1038.        2       2  0.0% 22-Dec-98 09:06:46 +Ucomment
  1039.        2       2  0.0% 22-Dec-98 09:06:46 +Usfn
  1040.        2       2  0.0% 22-Dec-98 09:06:46 +Utag
  1041.        3       3  0.0% 22-Dec-98 09:06:48 +compiler.Amiga
  1042.        5       5  0.0% 22-Dec-98 09:06:50 +compiler.BeOS
  1043.        3       3  0.0% 22-Dec-98 09:06:48 +compiler.DOS
  1044.        3       3  0.0% 22-Dec-98 09:06:48 +compiler.Macintosh
  1045.        3       3  0.0% 22-Dec-98 09:06:48 +compiler.OS2
  1046.        5       5  0.0% 22-Dec-98 09:08:18 +compiler.UNIX
  1047.        3       3  0.0% 22-Dec-98 09:06:48 +compiler.VMS
  1048.        9       9  0.0% 22-Dec-98 09:06:48 +compiler.Windows
  1049.     1280     582 54.5% 01-Jan-99 18:57:22 +gc
  1050.     1014     594 41.4% 22-Dec-98 09:06:50 +alpha.c
  1051.     1229     706 42.5% 22-Dec-98 09:06:50 +BeOS_x86.c
  1052.     1202     709 41.0% 22-Dec-98 09:06:50 +freebsd.c
  1053.     1427     745 47.7% 22-Dec-98 09:06:50 +generic.c
  1054.     1168     673 42.3% 22-Dec-98 09:06:50 +hp-pa.c
  1055.     1081     630 41.7% 22-Dec-98 09:06:50 +linux.c
  1056.      268     179 33.2% 22-Dec-98 09:06:50 +m68k.c
  1057.     1134     656 42.1% 22-Dec-98 09:06:50 +MacintoshPPC.c
  1058.     1192     709 40.5% 22-Dec-98 09:06:48 +sparc.c
  1059.     1133     655 42.1% 22-Dec-98 09:06:50 +windows.c
  1060.        3       3  0.0% 22-Dec-98 09:06:48 +linker.Amiga
  1061.        5       5  0.0% 22-Dec-98 09:06:50 +linker.BeOS
  1062.        3       3  0.0% 22-Dec-98 09:06:48 +linker.DOS
  1063.        3       3  0.0% 22-Dec-98 09:06:48 +linker.Macintosh
  1064.        3       3  0.0% 22-Dec-98 09:06:48 +linker.OS2
  1065.        5       5  0.0% 22-Dec-98 09:08:18 +linker.UNIX
  1066.        3       3  0.0% 22-Dec-98 09:06:48 +linker.VMS
  1067.        9       9  0.0% 22-Dec-98 09:06:48 +linker.Windows
  1068.      109      51 53.2% 02-Jan-99 14:11:16 +loadpath.Amiga
  1069.      132      55 58.3% 22-Dec-98 09:06:50 +loadpath.BeOS
  1070.      181      61 66.2% 22-Dec-98 09:06:48 +loadpath.DOS
  1071.       36      33  8.3% 22-Dec-98 09:06:48 +loadpath.Macintosh
  1072.        1       1  0.0% 22-Dec-98 09:06:48 +loadpath.OS2
  1073.      139      53 61.8% 22-Dec-98 09:06:48 +loadpath.UNIX
  1074.      198      65 67.1% 22-Dec-98 09:06:48 +loadpath.VMS
  1075.      105      52 50.4% 22-Dec-98 09:06:48 +loadpath.Windows
  1076.        3       3  0.0% 22-Dec-98 09:06:48 +o_suffix.Amiga
  1077.        3       3  0.0% 22-Dec-98 09:06:50 +o_suffix.BeOS
  1078.        3       3  0.0% 22-Dec-98 09:06:48 +o_suffix.DOS
  1079.        3       3  0.0% 22-Dec-98 09:06:48 +o_suffix.Macintosh
  1080.        3       3  0.0% 22-Dec-98 09:06:48 +o_suffix.OS2
  1081.        2       2  0.0% 22-Dec-98 09:06:48 +o_suffix.UNIX
  1082.        5       5  0.0% 22-Dec-98 09:06:48 +o_suffix.VMS
  1083.        3       3  0.0% 22-Dec-98 09:06:48 +o_suffix.Windows
  1084.       65      58 10.7% 22-Dec-98 09:06:48 +READ_ME
  1085.     2763    1233 55.3% 22-Dec-98 09:06:50 +base.h
  1086.     1090     644 40.9% 22-Dec-98 09:06:50 +boost.c
  1087.      891     553 37.9% 22-Dec-98 09:06:50 +boost.h
  1088.    15812    3499 77.8% 22-Dec-98 09:06:50 +exceptions.c
  1089.     1994     992 50.2% 22-Dec-98 09:06:50 +exceptions.h
  1090.    14267    3581 74.9% 22-Dec-98 09:06:50 +gc_lib.c
  1091.     3178    1416 55.4% 22-Dec-98 09:06:50 +gc_lib.h
  1092.     8011    2377 70.3% 22-Dec-98 09:06:50 +no_check.c
  1093.     2335    1079 53.7% 22-Dec-98 09:06:50 +no_check.h
  1094.     4898    2472 49.5% 22-Dec-98 09:06:50 +SmallEiffelRuntime.class
  1095.     7891    2256 71.4% 22-Dec-98 09:06:50 +SmallEiffelRuntime.java
  1096.     4999    1841 63.1% 22-Dec-98 09:06:50 +trace.c
  1097.     1156     649 43.8% 22-Dec-98 09:06:50 +trace.h
  1098.        6       6  0.0% 01-Jan-99 18:31:32 +system.se
  1099.     4784    1963 58.9% 03-Jan-99 17:03:28 +Amiga.readme
  1100. -------- ------- ----- --------- --------
  1101. 10991601 2421873 77.9% 05-Jan-99 18:15:54   945 files
  1102.